home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: The Month 2004 October / The Sunday Times - The Month 2004-10.iso / pc / assets / swf / intro.swf / scripts / frame_2 / DoAction.as
Text File  |  2004-09-01  |  488b  |  19 lines

  1. function skip()
  2. {
  3.    clearInterval(enterID);
  4.    mc_enter._visible = false;
  5.    connTardisSend.send("Tardis","intro_nextState");
  6. }
  7. function setSkipSO(val)
  8. {
  9.    connTardisSend.send("Tardis","UsageData_setValue","soIssue","times_intro_skip",val);
  10. }
  11. function showEnterButton()
  12. {
  13.    mc_enter.gotoAndPlay("loop");
  14.    clearInterval(enterID);
  15. }
  16. connTardisSend = new LocalConnection();
  17. enterID = setInterval(showEnterButton,Number(_parent.currentPanel.skipDelay) * 1000);
  18. stop();
  19.